home *** CD-ROM | disk | FTP | other *** search
/ PC Home 109 / PC Home 109.iso / data1.cab / Program_Files / id007.dxr / 00173.ls < prev    next >
Encoding:
Text File  |  2001-03-02  |  722 b   |  32 lines

  1. on exitFrame
  2.   repeat with n = 8 to 10
  3.     handcursor(n)
  4.   end repeat
  5.   repeat with n = 12 to 13
  6.     handcursor(n)
  7.   end repeat
  8.   if rollOver(2) then
  9.     set the visible of sprite 5 to 1
  10.     set the visible of sprite 6 to 0
  11.     set the visible of sprite 7 to 0
  12.   else
  13.     set the visible of sprite 5 to 0
  14.   end if
  15.   if rollOver(3) then
  16.     set the visible of sprite 5 to 0
  17.     set the visible of sprite 6 to 1
  18.     set the visible of sprite 7 to 0
  19.   else
  20.     set the visible of sprite 6 to 0
  21.   end if
  22.   if rollOver(4) then
  23.     set the visible of sprite 5 to 0
  24.     set the visible of sprite 6 to 0
  25.     set the visible of sprite 7 to 1
  26.   else
  27.     set the visible of sprite 7 to 0
  28.   end if
  29.   updateStage()
  30.   go(the frame)
  31. end
  32.